home *** CD-ROM | disk | FTP | other *** search
- // -* DropBehavior.js *-
- //
- // Name: Drop behavior
- // Description:
- // Author:
- // Version: $Id: DropBehavior.js,v 1.4 2001/02/27 12:03:24 consumer Exp $
- //
-
- function DropBehavior()
- {
- // No need for an object with this behavior.
- }
-
- function DropBehaviorStart(solidName)
- {
- TSUpdateNodeAttribute(solidName, 'fixed', '0');
- }
-
- function DropBehaviorStop()
- {
- }
-
- //
- // Event functions
- //
-
- function DropBehaviorStartEvent(obj, event)
- {
- var targetSolid = TSGetExtraParam(event, 'targetSolid');
-
- if (targetSolid == "")
- DropBehaviorStart(obj);
- else
- DropBehaviorStart(targetSolid);
- }
-
- function DropBehaviorStopEvent(obj, event)
- {
- }
-